<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;!DOCTYPE html&gt;
&lt;html lang="zh-CN"&gt;

&lt;head&gt;
    &lt;meta charset="UTF-8" /&gt;
    &lt;meta name="viewport" content="width=device-width, initial-scale=1.0" /&gt;
    &lt;title&gt;zuqiu.cc鍔犺浇涓�...&lt;/title&gt;
    &lt;style&gt;
        /* 鏁翠釜椤甸潰灞呬腑鏄剧ず */
        html,
        body {
          margin: 0;
          padding: 0;
          height: 100%;
          background: #f9f9f9;
          display: flex;
          align-items: center;
          justify-content: center;
          font-family: Arial, sans-serif;
        }
        /* 澶栧眰瀹瑰櫒 */
        .loader-wrapper {
          text-align: center;
        }
        
        .brand-logo {
          font-size: 32px;
          font-weight: bold;
          color: #e74c3c;
          margin-bottom: 20px;
        }
        
        .loader-container {
          position: relative;
          width: 150px;
          height: 150px;
          margin: 0 auto;
        }
        
        .loader-svg {
          width: 100%;
          height: 100%;
          transform: rotate(-90deg);
        }
        
        .loader-bg {
          fill: none;
          stroke: #eee;
          stroke-width: 10;
        }
        .loader-progress {
          fill: none;
          stroke: #e74c3c;
          stroke-width: 10;
          stroke-dasharray: 439.82; 
          stroke-dashoffset: 439.82;
          animation: progressAnimation 1s linear forwards;
        }
        @keyframes progressAnimation {
          to {
            stroke-dashoffset: 0;
          }
        }
        
        .countdown-text {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 24px;
          color: #333;
        }
        .hint-text {
          margin-top: 20px;
          font-size: 18px;
          color: #666;
        }
        
        #jump-button {
          margin-top: 20px;
          padding: 8px 16px;
          font-size: 16px;
          cursor: pointer;
          background: #e74c3c;
          border: none;
          color: #fff;
          border-radius: 4px;
        }
        #jump-button:hover {
          background: #c0392b;
        }
    &lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
    &lt;div class="loader-wrapper"&gt;
        &lt;div class="brand-logo"&gt;zuqiu.cc鍔犺浇涓�&lt;/div&gt;
        &lt;div class="loader-container"&gt; &lt;svg class="loader-svg" viewBox="0 0 150 150"&gt;
                &lt;circle class="loader-bg" cx="75" cy="75" r="70"&gt;&lt;/circle&gt;
                &lt;circle class="loader-progress" cx="75" cy="75" r="70"&gt;&lt;/circle&gt;
            &lt;/svg&gt;
            &lt;div class="countdown-text" id="countdown-text"&gt;0&lt;/div&gt;
        &lt;/div&gt;
        &lt;div class="hint-text"&gt;绮惧僵鐩存挱姝ｅ湪鍔犺浇锛岃绋嶅€�...&lt;/div&gt; &lt;button id="jump-button"&gt;绔嬪嵆璺宠浆&lt;/button&gt;
    &lt;/div&gt;
    &lt;script&gt;
        // live03
        var _hmt = _hmt || [];
        (function() {
          var hm = document.createElement("script");
          hm.src = "https://hm.baidu.com/hm.js?4ab742640c51e4122c1faa005244dc3f";
          var s = document.getElementsByTagName("script")[0]; 
          s.parentNode.insertBefore(hm, s);
        })();
            
        const targetUrl = "https://zuqiu40.app";
        const duration = 1000; // 1绉�
        const countdownText = document.getElementById("countdown-text");
        const startTime = performance.now();
        
        function updateCountdown() {
          const elapsed = performance.now() - startTime;
          const percentage = Math.min(
            Math.floor((elapsed / duration) * 100),
            100
          );
          countdownText.textContent = percentage;
          if (elapsed &lt; duration) {
            requestAnimationFrame(updateCountdown);
          }
        }
        requestAnimationFrame(updateCountdown);
        
        document.querySelector(".loader-progress").addEventListener("animationend", () =&gt; {
            window.location.href = targetUrl;
          });
        
        document.getElementById("jump-button").addEventListener("click", () =&gt; {
          window.location.href = targetUrl;
        });
    &lt;/script&gt;
&lt;/body&gt;

&lt;/html&gt;</pre></body></html>